home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / e4v200.zip / COMPILE.CL next >
Text File  |  1993-06-16  |  538b  |  25 lines

  1. ; COMPILE Sample Configuration File
  2.  
  3. ; Placeholders:
  4.  
  5. ; $f    full filename, with directory, path and extension
  6. ; $p    pathname part of filename, with trailing \ if one is present
  7. ; $d    name of directory containing filename, without trailing \
  8. ; $x    extension of file, with leading .
  9. ; $n    name part of filename, without extension
  10. ; $$    a dollar sign
  11.  
  12. ; The above may be capitalised if you wish the string that they 
  13. ; represent to be in captials also.
  14.  
  15. *.c
  16.     bcc -v $f
  17.  
  18. *.asm
  19.     tasm /zi $f
  20.     tlink /v $p$n.obj
  21.  
  22. *.pas
  23.     tp $f
  24.  
  25.